/* ============================================================
   Florăria Adriana — Atelier Floral
   Template: floraria/atelier
   Fonts: Fraunces (display) + Jost (body)
   ============================================================ */

:root {
  /* Brand (overridden by inline <style> from client data) */
  --green:   #2E4C3B;
  --ink:     #26302A;
  --blush:   #C98B84;

  /* Palette */
  --cream:    #F7F2EA;
  --cream-2:  #F1E8D8;
  --cream-3:  #EADFCB;
  --green-deep: #1F3528;
  --sage:     #7C8E79;
  --gold:     #BFA068;
  --rose-ink: #9C5E58;

  --line:     rgba(38, 48, 42, .14);
  --line-soft:rgba(38, 48, 42, .08);

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 14px;

  --shadow-sm: 0 2px 10px rgba(31, 53, 40, .06);
  --shadow:    0 18px 50px -24px rgba(31, 53, 40, .35);
  --shadow-lg: 0 40px 90px -40px rgba(31, 53, 40, .55);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ───────────── reset ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

.ic { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }

/* ───────────── shared typography ───────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 340;
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: var(--ink);
}
.h-display em { color: var(--green); font-weight: 360; }
.h-display.light { color: var(--cream); }
.h-display.light em { color: var(--blush); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow--ink { color: var(--sage); }
.eyebrow--cream { color: var(--blush); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blush);
  flex: none;
}
.eyebrow--cream .eyebrow__dot { background: var(--blush); }

.lede {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  max-width: 56ch;
}
.lede.light { color: rgba(247, 242, 234, .8); }

.price-pill {
  display: inline-flex; align-items: center;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .02em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--green);
  background: var(--cream);
  white-space: nowrap;
}

/* ───────────── buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 100px;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--green); color: var(--cream); }
.btn--solid:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }
.btn--blush { background: var(--blush); color: #fff; }
.btn--blush:hover { background: var(--rose-ink); transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(156, 94, 88, .8); }

/* ───────────── layout primitives ───────────── */
.section { padding: clamp(64px, 9vw, 130px) var(--pad); max-width: var(--maxw); margin: 0 auto; }

.sec-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sec-head .lede { margin: 0 auto; }
.sec-head--left { text-align: left; align-items: flex-start; margin-left: 0; }
.sec-head--left .lede { margin: 0; }

.frame { position: relative; overflow: hidden; border-radius: 220px 220px 14px 14px; box-shadow: var(--shadow); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.frame--tall { aspect-ratio: 4 / 5; }
.frame:hover img { transform: scale(1.05); }

/* ───────────── nav ───────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: padding .4s var(--ease);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.nav.is-scrolled .nav__inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  flex: none;
  transition: transform .6s var(--ease), background .4s;
}
.brand__mark .ic { width: 21px; height: 21px; }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }
.brand__name { font-family: var(--serif); font-size: 1.42rem; font-weight: 420; letter-spacing: -.01em; line-height: 1; color: var(--ink); }
.brand__name em { color: var(--green); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: .92rem; font-weight: 400; letter-spacing: .01em;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--blush);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
/* Ascuns pe desktop — există deja nav__cta--shop */
.nav__link--shop { display: none !important; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--cream);
  padding: 11px 20px; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  transition: transform .4s var(--ease), background .3s;
}
.nav__cta .ic { width: 16px; height: 16px; }
.nav__cta:hover { background: var(--green-deep); transform: translateY(-2px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 70; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }

/* ───────────── hero ───────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px var(--pad) 80px;
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}
.hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero__copy { position: relative; z-index: 3; }
.hero__title {
  font-family: var(--serif);
  font-weight: 330;
  font-optical-sizing: auto;
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  line-height: .99;
  letter-spacing: -.022em;
  margin: 26px 0 22px;
  color: var(--ink);
}
.hero__title em { color: var(--green); display: inline; }
.hero__sub { font-size: clamp(1.04rem, 1.7vw, 1.28rem); line-height: 1.55; max-width: 44ch; color: color-mix(in srgb, var(--ink) 76%, transparent); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }

.hero__pills { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__pills li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--sage); font-weight: 400;
}
.hero__pills .ic { width: 17px; height: 17px; color: var(--green); }

/* hero media */
.hero__media { position: relative; z-index: 2; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.hero:hover .hero__frame img { transform: scale(1.04); }
.hero__frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), inset 0 -120px 90px -70px rgba(31,53,40,.5);
  pointer-events: none;
}
.hero__frame-fallback { width: 100%; height: 100%; background: linear-gradient(160deg, var(--green), var(--green-deep)); }

.hero__tagcard {
  position: absolute; right: -14px; bottom: 34px;
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 3px;
  max-width: 200px;
}
.hero__tagcard-l { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blush); font-weight: 600; }
.hero__tagcard-t { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); line-height: 1.15; }

/* rotating seal */
.seal {
  position: absolute; left: -34px; top: 28px;
  width: 116px; height: 116px;
  display: grid; place-items: center;
  background: var(--blush);
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 4;
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
.seal text { font-family: var(--sans); font-size: 8.4px; letter-spacing: 1.3px; fill: var(--cream); font-weight: 500; }
.seal__mark { color: var(--cream); }
.seal__mark .ic { width: 30px; height: 30px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal svg { animation: none; } }

/* floating petals */
.petal { position: absolute; color: var(--sage); opacity: .26; z-index: 1; pointer-events: none; }
.petal .ic { width: 100%; height: 100%; }
.petal--1 { width: 60px; height: 60px; top: 16%; left: 46%; color: var(--blush); opacity: .3; animation: drift 13s ease-in-out infinite; }
.petal--2 { width: 90px; height: 90px; bottom: 12%; left: 6%; animation: drift 17s ease-in-out infinite reverse; }
.petal--3 { width: 44px; height: 44px; top: 30%; right: 4%; color: var(--blush); opacity: .24; animation: drift 11s ease-in-out infinite 1s; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce) { .petal { animation: none !important; } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 14px;
  display: grid; justify-items: center; padding-top: 8px; z-index: 5;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--green); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(10px); } }

/* ───────────── marquee ───────────── */
.marquee { background: var(--green); color: var(--cream); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: inline-flex; align-items: center; gap: 30px; white-space: nowrap; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: 1.5rem; font-weight: 320; font-style: italic; }
.marquee__track i { color: var(--blush); display: inline-flex; }
.marquee__track i .ic { width: 20px; height: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ───────────── despre ───────────── */
.despre__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.despre__media { position: relative; }
.despre__badge {
  position: absolute; right: -10px; bottom: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 11px 16px; border-radius: 100px; box-shadow: var(--shadow);
  font-size: .82rem; color: var(--ink);
}
.despre__badge .ic { width: 18px; height: 18px; color: var(--green); }
.despre__copy .h-display { margin: 18px 0 22px; }
.despre__body p { margin-bottom: 16px; color: color-mix(in srgb, var(--ink) 80%, transparent); max-width: 52ch; }

.stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.stat {
  flex: 1; min-width: 130px;
  padding: 22px 20px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.stat__n { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--green); font-weight: 380; }
.stat__l { font-size: .82rem; color: var(--sage); letter-spacing: .01em; }

/* ───────────── colecții ───────────── */
.colectii { background: linear-gradient(180deg, var(--cream), var(--cream-2)); max-width: none; }
.colectii > .sec-head, .colectii > .coll-grid { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.coll-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.coll-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line); }
.coll-card__img { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.coll-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.coll-card:hover .coll-card__img img { transform: scale(1.07); }
.coll-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(6px);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--green); padding: 6px 12px; border-radius: 100px;
}
.coll-card__body { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.coll-card__body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.1; color: var(--ink); }
.coll-card__body p { font-size: .94rem; color: color-mix(in srgb, var(--ink) 72%, transparent); line-height: 1.55; }
.coll-card__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; }
.coll-card__link {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
  transition: background .35s, color .35s, transform .45s var(--ease);
}
.coll-card__link .ic { width: 18px; height: 18px; }
.coll-card:hover .coll-card__link { background: var(--green); color: var(--cream); transform: rotate(45deg); }

/* ───────────── signature ───────────── */
.signature { background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
.signature::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(201,139,132,.18), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(124,142,121,.18), transparent 60%);
}
.signature__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 78px); align-items: center;
}
.signature__media { aspect-ratio: 5 / 4; border-radius: 16px 16px 200px 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.signature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.signature__media:hover img { transform: scale(1.05); }
.signature__copy .h-display { margin: 18px 0 20px; }
.signature__text { color: rgba(247,242,234,.82); max-width: 46ch; font-size: 1.05rem; line-height: 1.6; }
.signature__foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 32px; }
.signature__price { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--cream); font-weight: 360; }
.signature__price small { font-size: .9rem; font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--blush); }

/* ───────────── galerie (masonry) ───────────── */
.masonry { column-count: 3; column-gap: clamp(14px, 2vw, 22px); max-width: var(--maxw); margin: 0 auto; }
.masonry__item {
  position: relative; display: block; width: 100%;
  margin-bottom: clamp(14px, 2vw, 22px);
  border-radius: 14px; overflow: hidden;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .5s var(--ease);
}
.masonry__item img { width: 100%; transition: transform 1s var(--ease); }
.masonry__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,53,40,.35), transparent 45%); opacity: 0; transition: opacity .4s; }
.masonry__item:hover { box-shadow: var(--shadow); }
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item:hover::after { opacity: 1; }
.masonry__zoom {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  color: var(--green);
  opacity: 0; transform: translateY(8px) scale(.9);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.masonry__zoom .ic { width: 18px; height: 18px; }
.masonry__item:hover .masonry__zoom { opacity: 1; transform: translateY(0) scale(1); }

/* ───────────── servicii ───────────── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.svc {
  padding: 30px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.svc:hover { transform: translateY(-6px); border-color: var(--line); background: var(--cream-2); }
.svc__ic {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--green) 10%, var(--cream));
  color: var(--green);
  margin-bottom: 18px;
}
.svc__ic .ic { width: 26px; height: 26px; stroke-width: 1.4; }
.svc h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.svc p { font-size: .9rem; color: color-mix(in srgb, var(--ink) 70%, transparent); line-height: 1.55; }

/* ───────────── magazin ───────────── */
.magazin { background: var(--cream-2); max-width: none; padding-bottom: clamp(64px, 9vw, 120px); }
.magazin > .sec-head,
.magazin > .shop-filters,
.magazin > .shop-grid,
.magazin > .shop-more { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* Filter tabs */
.shop-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: 0 var(--pad);
}
.shop-tab {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--cream);
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  cursor: pointer; transition: background .3s, color .3s, border-color .3s, box-shadow .3s, transform .35s var(--ease);
  white-space: nowrap;
}
.shop-tab:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.shop-tab.is-active {
  background: var(--green); color: var(--cream); border-color: var(--green);
  box-shadow: 0 6px 22px -10px rgba(46,76,59,.55);
}
.shop-tab__count {
  font-size: .75rem; font-weight: 600; opacity: .65;
  background: rgba(0,0,0,.08); padding: 2px 7px; border-radius: 100px;
}
.shop-tab.is-active .shop-tab__count { background: rgba(255,255,255,.2); opacity: 1; }

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  padding: 0 var(--pad);
}
.shop-item {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.shop-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.shop-item__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-3); }
.shop-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.shop-item:hover .shop-item__img img { transform: scale(1.08); }
.shop-item__img-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: var(--sage); opacity: .45;
}
.shop-item__img-placeholder .ic { width: 40px; height: 40px; }
.shop-item__body { padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.shop-item__cat {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blush); font-weight: 600;
}
.shop-item__body h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  line-height: 1.25; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.shop-item__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.shop-item__price {
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  color: var(--green); white-space: nowrap;
}
.shop-item__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 500;
  background: var(--green); color: var(--cream);
  padding: 7px 12px; border-radius: 100px;
  transition: background .3s, transform .35s var(--ease);
  white-space: nowrap;
}
.shop-item__cta .ic { width: 13px; height: 13px; }
.shop-item__cta:hover { background: var(--green-deep); transform: scale(1.04); }

/* Show more */
.shop-more { display: flex; justify-content: center; padding: clamp(28px, 4vw, 44px) var(--pad) 0; }

/* ───────────── reviews ───────────── */
.reviews { background: var(--cream-2); max-width: none; }
.reviews > .sec-head, .reviews > .reviews__grid { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.review {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review__stars { display: inline-flex; gap: 3px; color: var(--gold); }
.review__stars .ic { width: 18px; height: 18px; fill: var(--gold); stroke: var(--gold); }
.review blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; font-weight: 360; color: var(--ink); font-style: italic; }
.review figcaption { font-size: .85rem; font-weight: 500; letter-spacing: .04em; color: var(--green); margin-top: auto; }

/* ───────────── contact ───────────── */
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact__copy .h-display { margin: 16px 0 14px; }
.contact__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 32px 0; }
.contact__block h4 { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 14px; }
.contact__block h4 .ic { width: 16px; height: 16px; color: var(--green); }
.hours li, .clist li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; }
.hours li span:first-child { color: color-mix(in srgb, var(--ink) 70%, transparent); }
.hours li span:last-child { font-weight: 500; }
.clist li { justify-content: flex-start; }
.clist a { color: var(--ink); transition: color .3s; }
.clist a:hover { color: var(--green); }

.order {
  margin-top: 8px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px;
}
.order h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 18px; color: var(--ink); }
.order__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .96rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 14%, transparent);
}
.order .btn { margin-top: 6px; }
.order__msg { display: block; margin-top: 12px; font-size: .9rem; color: var(--green); min-height: 1.2em; }
.order__msg.is-ok { font-weight: 500; }

.contact__map { position: relative; }
.contact__map iframe, .map-fallback, .map-facade {
  width: 100%; aspect-ratio: 3 / 4; min-height: 420px;
  border: 1px solid var(--line-soft); border-radius: 18px;
  display: block;
}
.contact__map iframe { filter: grayscale(.15) contrast(1.02); }
.map-fallback, .map-facade {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px;
  background: linear-gradient(160deg, var(--green), var(--green-deep)); color: var(--cream);
  text-align: center; padding: 30px;
  position: relative; overflow: hidden;
}
.map-facade { cursor: pointer; transition: filter .4s var(--ease); }
.map-facade::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(247,242,234,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,234,.06) 1px, transparent 1px);
  background-size: 34px 34px; opacity: .6;
}
.map-facade:hover { filter: brightness(1.08); }
.map-facade > * { position: relative; z-index: 1; }
.map-fallback .ic, .map-facade__pin .ic { width: 42px; height: 42px; color: var(--blush); }
.map-fallback span, .map-facade__addr { font-family: var(--serif); font-size: 1.2rem; max-width: 24ch; line-height: 1.3; }
.map-facade__hint {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,234,.8);
  border: 1px solid rgba(247,242,234,.32); padding: 8px 16px; border-radius: 100px; margin-top: 6px;
}
.map__cta {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 16px; font-size: .88rem; font-weight: 500; color: var(--green);
}
.map__cta .ic { width: 17px; height: 17px; }
.map__cta:hover { color: var(--green-deep); }

/* ───────────── footer ───────────── */
.foot { background: var(--ink); color: var(--cream); padding: clamp(48px, 7vw, 84px) var(--pad) 30px; overflow: hidden; }
.foot__big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.4rem, 13vw, 11rem); line-height: .9;
  letter-spacing: -.03em; text-align: center;
  color: rgba(247, 242, 234, .1);
  margin-bottom: 40px; white-space: nowrap;
}
.foot__big em { color: rgba(201, 139, 132, .26); }
.foot__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(247, 242, 234, .12);
}
.brand--foot .brand__name { color: var(--cream); font-size: 1.5rem; }
.brand--foot .brand__mark { background: var(--green); }
.foot__col--about p { margin-top: 14px; color: rgba(247, 242, 234, .6); max-width: 34ch; font-size: .95rem; }
.foot__col h6 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blush); margin-bottom: 14px; font-weight: 600; }
.foot__col p { color: rgba(247, 242, 234, .68); font-size: .95rem; line-height: 1.9; }
.foot__col a { transition: color .3s; }
.foot__col a:hover { color: var(--cream); }
.foot__social { display: flex; gap: 10px; margin-top: 16px; }
.foot__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,242,234,.18); display: grid; place-items: center; transition: background .35s, border-color .35s, transform .4s var(--ease); }
.foot__social a .ic { width: 18px; height: 18px; }
.foot__social a:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.foot__bottom {
  max-width: var(--maxw); margin: 22px auto 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(247, 242, 234, .5);
}

/* ───────────── lightbox ───────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 28, 22, .92);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; animation: lbFade .3s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: min(92vw, 880px); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__close { position: absolute; top: 22px; right: 28px; font-size: 2.4rem; line-height: 1; color: var(--cream); opacity: .8; transition: opacity .3s, transform .3s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(247, 242, 234, .12); color: var(--cream);
  font-size: 2rem; line-height: 1; display: grid; place-items: center;
  transition: background .3s;
}
.lightbox__nav:hover { background: rgba(247, 242, 234, .24); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ───────────── reveal animations ───────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  body.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-scrolled, body.nav-open .nav {
    background: var(--cream);
    backdrop-filter: blur(14px);
  }
  body.nav-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 16px var(--pad) 26px;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav__links a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  /* Buton Magazin vizibil în meniul hamburger */
  body.nav-open .nav__link--shop {
    display: inline-flex !important;
    align-items: center; gap: 9px;
    margin-top: 10px;
    background: var(--green); color: var(--cream) !important;
    padding: 14px 20px !important;
    border-radius: 100px;
    font-weight: 500 !important;
    border-bottom: none !important;
    width: auto !important;
  }
  body.nav-open .nav__link--shop::after { display: none; }
  body.nav-open .nav__link--shop .ic { width: 18px; height: 18px; color: var(--cream); }

  .hero { min-height: auto; padding-top: 116px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero__scroll { display: none; }
  .seal { width: 92px; height: 92px; left: -16px; top: 16px; }

  .despre__grid { grid-template-columns: 1fr; gap: 40px; }
  .despre__media { max-width: 440px; }
  .signature__inner { grid-template-columns: 1fr; gap: 32px; }
  .signature__media { aspect-ratio: 4 / 3; border-radius: 16px 16px 120px 16px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map iframe, .map-fallback, .map-facade { aspect-ratio: 16 / 11; min-height: 320px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-filters { padding: 0; }
  .shop-grid { padding: 0; }
  .shop-more { padding: 28px 0 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --pad: 20px; }
  .coll-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__cols { grid-template-columns: 1fr; gap: 22px; }
  .order__row { grid-template-columns: 1fr; }
  .order { padding: 22px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot__col--about { grid-column: 1 / -1; }
  .hero__tagcard { right: 0; bottom: 18px; padding: 11px 14px; max-width: 170px; }
  .hero__pills { gap: 8px 16px; }
  .stat { min-width: 100%; }
}

@media (max-width: 380px) {
  .foot__grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
